home *** CD-ROM | disk | FTP | other *** search
File List | 1989-03-27 | 296 b | 13 lines |
- ' Example program for loading a file, which had been saved with the
- ' "GFA-BASIC \.GET" command, from the OPTIONS menu in GFA OBJECT.
- ' The file has to be saved as "TEST.GET".
- '
- Open "I",#1,"TEST.GET"
- L=Lof(#1)
- A$=Input$(L,#1)
- Close #1
- Do
- Put Mousex,Mousey,A$
- Exit If Mousek
- Loop
-